home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #5
/
Amiga Plus CD - 2000 - No. 5.iso
/
Tools
/
Misc
/
InstallerNG
/
developer
/
gui
/
example
/
igui_QuitApp.c
< prev
next >
Wrap
C/C++ Source or Header
|
1999-10-28
|
990b
|
50 lines
#include "includes.h"
#include "installergui_data.h"
/********************************************************************
*
* DESCRIPTION
*
* tells, whether the one wants to quit the installer
* or not; this depends on the gui and its abilities to "quit"
* by a close-gadget, a menu or whatever
*
* IN: application - pointer to the private application structure
* OUT: TRUE, if the user wants to quit the installer, FALSE otherwise
*
*/
/********************************************************************
*
* STATIC
*
*/
/********************************************************************
*
* EXTERN
*
*/
/********************************************************************
*
* PUBLIC
*
*/
/********************************************************************
*
* CODE
*
*/
BOOL __asm igui_QuitApp(register __a0 APTR application)
{
#ifdef DEBUG
DEBUG_MAKRO
#endif
return ((BOOL) ((struct Application *) application)->app_Quit);
}